home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / gcc / libmat.lha / src / mconstdiv.cc < prev    next >
C/C++ Source or Header  |  1980-01-01  |  133b  |  9 lines

  1. //                MATRIX LIB
  2. //            TOMMY JOHANSSON 1995
  3.  
  4. #include "matrix.h"
  5. Matrix operator /(const Matrix& A,const float x)
  6. {
  7.     return(1/x*A);
  8. }
  9.